home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / gs24src.zip / BSEQ.H < prev    next >
Text File  |  1991-12-16  |  2KB  |  51 lines

  1. /* Copyright (C) 1990 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* bseq.h */
  21. /* Definitions for Level 2 binary object sequences */
  22.  
  23. /* Binary object sequence element types */
  24. typedef enum {
  25.   bs_null = 0,
  26.   bs_integer = 1,
  27.   bs_real = 2,
  28.   bs_name = 3,
  29.   bs_boolean = 4,
  30.   bs_string = 5,
  31.   bs_eval_name = 6,
  32.   bs_array = 9,
  33.   bs_mark = 10
  34. } bin_seq_type;
  35. #define bs_executable 128
  36.  
  37. /* Definition of an object in a binary object sequence */
  38. typedef struct {
  39.   byte tx;            /* type and executable flag */
  40.   byte unused;
  41.   union {
  42.     ushort w;
  43.     byte b[2];
  44.   } size;
  45.   union {
  46.     long w;
  47.     float f;
  48.     byte b[4];
  49.   } value;
  50. } bin_seq_obj;
  51.